home *** CD-ROM | disk | FTP | other *** search
- !ScalaScript
- /*
- ** $Id: fade.wip,v 1.26 1999/02/05 00:27:31 dbarrans Exp $
- **
- ** Fade wipes
- **
- */
-
- GROUPID($07109400);
-
- //===================
- // Families
- //===================
- FadeWipe("CutWhiteFade", Icon(14,14), In(RGB, 255, 255, 255));
- FadeWipe("FadeWhiteFade", Icon(15,14), Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255));
- FadeWipe("FadeWhiteCut", Icon(16,14), Out(RGB, 255, 255, 255));
-
- FadeWipe("CutGreyFade", Icon(17,14), In(RGB, 127,127,127));
- FadeWipe("FadeGreyFade", Icon(18,14), Out(RGB, 127,127,127), In(RGB, 127,127,127));
- FadeWipe("FadeGreyCut", Icon(19,14), Out(RGB, 127,127,127));
-
- FadeWipe("CutBlackFade", Icon(0,15), In(RGB, 0,0,0));
- FadeWipe("FadeBlackFade", Icon(1,15), Out(RGB, 0,0,0), In(RGB, 0,0,0));
- FadeWipe("FadeBlackCut", Icon(2,15), Out(RGB, 0,0,0));
-
- FadeWipe("CutRedFade", Icon(3,15), In(RGB, 255,0,0));
- FadeWipe("FadeRedFade", Icon(4,15), Out(RGB, 255,0,0), In(RGB, 255,0,0));
- FadeWipe("FadeRedCut", Icon(5,15), Out(RGB, 255,0,0));
-
- FadeWipe("CutGreenFade", Icon(6,15), In(RGB, 0,255,0));
- FadeWipe("FadeGreenFade", Icon(7,15), Out(RGB, 0,255,0), In(RGB, 0,255,0));
- FadeWipe("FadeGreenCut", Icon(8,15), Out(RGB, 0,255,0));
-
- FadeWipe("CutBlueFade", Icon(9,15), In(RGB, 0,0,255));
- FadeWipe("FadeBlueFade", Icon(10,15), Out(RGB, 0,0,255), In(RGB, 0,0,255));
- FadeWipe("FadeBlueCut", Icon(11,15), Out(RGB, 0,0,255));
-
- FadeWipe("CutOrangeFade", Icon(12,15), In(RGB, 255,127,0));
- FadeWipe("FadeOrangeFade", Icon(13,15), Out(RGB, 255,127,0), In(RGB, 255,127,0));
- FadeWipe("FadeOrangeCut", Icon(14,15), Out(RGB, 255,127,0));
-
- FadeWipe("CutYellowFade", Icon(15,15), In(RGB, 255,255,0));
- FadeWipe("FadeYellowFade", Icon(16,15), Out(RGB, 255,255,0), In(RGB, 255,255,0));
- FadeWipe("FadeYellowCut", Icon(17,15), Out(RGB, 255,255,0));
-
- FadeWipe("CutPurpleFade", Icon(18,15), In(RGB, 255,0,255));
- FadeWipe("FadePurpleFade", Icon(19,15), Out(RGB, 255,0,255), In(RGB, 255,0,255));
- FadeWipe("FadePurpleCut", Icon(0,16), Out(RGB, 255,0,255));
-
-
- //===================
- // Individuals
- //===================
-
- /* Fades down to black, then fades in the new picture */
-
- FADEWIPE("Fade", Out(RGB, 1, 2, 3), In(RGB, 4, 5, 6), Icon(5,0));
-
- /* Cut to white, then fade in new picture */
- FADEWIPE("Nuclear", In(RGB, 255, 255, 255), Icon(6,0));
-
- /* Fade to white then fade new picture in from white */
- FADEWIPE("WhiteFade", Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255), Icon(8,0));
-
- /* Fade to black, cut to white, fade new picture in from white */
- FADEWIPE("NukeAtNight", Out(RGB, 0, 0, 0), In(RGB, 255, 255, 255), Icon(7,0));
-
- /* Fade old picture to black, cut in new picture */
- FADEWIPE("FadeCut", Out(RGB, 0, 0, 0), Icon(15,12));
-
- /* Fade via gold */
- FADEWIPE("FauGoldFade", Out(RGB, 230, 165, 55), In(RGB, 230, 165, 55), Icon(9,0));
-
- /* Fade via red */
- FADEWIPE("FadeViaRed", Out(RGB, 255, 20, 20), In(RGB, 255, 20, 20), Icon(10,0));
-
- /* Fade via navyblue */
- FADEWIPE("NavyBlueFade", Out(RGB, 20, 20, 180), In(RGB, 20, 20, 180), Icon(11,0));
-